home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-01 | 1023 b | 53 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _REFCTOBJ_
- #define _REFCTOBJ_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODRefCntObject;
-
- //==============================================================================
- // ODRefCntObject
- //==============================================================================
-
- interface ODRefCntObject : ODObject
- {
- void InitRefCntObject();
-
- void Acquire();
-
- void Release();
-
- ODULong GetRefCount();
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODRefCntObject;
-
- override:
- somUninit;
-
- releaseorder:
- InitRefCntObject,
- Acquire,
- Release,
- GetRefCount;
-
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif // _REFCTOBJ_
-
-